home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE03
/
PERSEUS
/
PSLABEL.ZIP
/
PSBLOCK.INT
< prev
next >
Wrap
Text File
|
1995-06-06
|
876b
|
30 lines
unit PSBlock;
{This is the source of the PSDrawText method which is shipped with the PSLabel
component of the Perseus VCP. If you purchase at least 2 copies of this
component you'll receive it with your registered version!
Copyright ⌐ 1995: Sebastian Modersohn
Softwaredevelopment
Heinestrasse 20
D 15370 Petershagen
Phone: ++49 33439 7462
CIS ID: 100340,1474
Written by: Lars Amsel
The source is nearly undocumented, so if you have questions to details, just
contact us via CompuServe and we'll help you (if we can <g>).}
{$DEFINE UNREGISTERED}
interface
uses Classes, WinProcs, WinTypes, Graphics, Controls, SysUtils;
const
dt_Block = $2000;
procedure PSDrawText(DC: HDC; var Rect: TRect; Text: String; Format: Word);
implementation